home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / gameprt.exe / GAMEDEMO.MAK < prev    next >
Text File  |  1991-08-18  |  208b  |  15 lines

  1. model=s
  2.  
  3. lib=c:\borlandc\lib
  4.  
  5. obj=gamedemo.obj gameport.obj
  6.  
  7. .asm.obj:
  8.   tasm $*
  9.  
  10. .c.obj:
  11.   bcc -m$(model) -c $*.c
  12.  
  13. gamedemo.exe: $(obj)
  14.   tlink $(lib)\c0$(model) $(obj),$*,,$(lib)\c$(model) /x
  15.